home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / graphics / morph.zip / WARP.BAT < prev   
DOS Batch File  |  1993-04-02  |  389b  |  14 lines

  1. @echo off
  2. REM This compiles the warp TGA files that DMORF renders into a FLI animation
  3. REM It then displays it using p6.exe
  4.  
  5. dtax /FF /S3 /P /Owarp.fli warp*.tga
  6.  
  7. REM /FF - output to FLI
  8. REM /S - Specifies speed
  9. REM /O - output to the file warp.fli
  10. REM /P - Ping pong the animation so it doesn't jump
  11. REM warp*.tga - These are the input files that dmorf created
  12.  
  13. p6  warp.fli
  14.